-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.py
35 lines (27 loc) · 962 Bytes
/
Solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
def merge_sorted_arrays(arr1, arr2):
merged = []
i, j = 0, 0
# Merge both arrays
while i < len(arr1) and j < len(arr2):
if arr1[i] <= arr2[j]:
merged.append(arr1[i])
i += 1
else:
merged.append(arr2[j])
j += 1
# Copy remaining elements of arr1
while i < len(arr1):
merged.append(arr1[i])
i += 1
# Copy remaining elements of arr2
while j < len(arr2):
merged.append(arr2[j])
j += 1
return merged
# Input from the user
n1 = int(input("Enter the number of elements in the first sorted array: "))
arr1 = list(map(int, input("Enter the elements of the first sorted array: ").split()))
n2 = int(input("Enter the number of elements in the second sorted array: "))
arr2 = list(map(int, input("Enter the elements of the second sorted array: ").split()))
merged = merge_sorted_arrays(arr1, arr2)
print("Merged sorted array:", merged)